Nevron Open Vision Documentation
Nevron.Nov.DataStructures Namespace / NList<T> Class / ConvertAll<TOutput> Method


In This Topic
    ConvertAll<TOutput> Method
    In This Topic
    Converts all items in this list to the specified output type. Uses the given converter delegate for the conversion.
    Syntax
    'Declaration
     
    
    Public Function ConvertAll(Of TOutput)( _
       ByVal converter As Nevron.Nov.FunctionResult(Of TOutput,T) _
    ) As NList(Of TOutput)
    'Usage
     
    
    Dim instance As NList(Of T)
    Dim converter As Nevron.Nov.FunctionResult(Of TOutput,T)
    Dim value As NList(Of TOutput)
     
    value = instance.ConvertAll(Of TOutput)(converter)
    public NList<TOutput> ConvertAll<TOutput>( 
       Nevron.Nov.FunctionResult<TOutput,T> converter
    )

    Parameters

    converter

    Type Parameters

    TOutput
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also